home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / prg_casm / wsc4c10.zip / SIMPLE._M_ < prev    next >
Text File  |  1996-09-01  |  877b  |  39 lines

  1. #
  2. # Microsoft makefile for SIMPLE
  3. #
  4. # To use: "NMAKE SIMPLE._M_"
  5. # (use NMAKE, not MAKE)
  6. #
  7.  
  8. C_FLAGS = -c -AS -G2sw -Oas -Zp
  9.  
  10. simple.exe: simple.res simple.obj simple.def wscerror.obj wsc.lib wsc.dll\
  11.            about.obj config.obj line.obj \
  12.            paint.obj menu.obj
  13.     link /NOD /NOE  @simple.rsp,,,libw slibcew wsc ,simple.def;
  14.     rc simple.res
  15.  
  16. simple.res: simple.rc simple.h
  17.     rc -r simple.rc
  18.  
  19. about.obj: about.c about.h
  20.    cl $(C_FLAGS)  about.c
  21.  
  22. config.obj: config.c config.h wsc.h
  23.     cl $(C_FLAGS)  config.c
  24.  
  25. line.obj: line.c line.h wsc.h
  26.     cl $(C_FLAGS)  line.c
  27.  
  28. menu.obj: menu.c menu.h wsc.h
  29.     cl $(C_FLAGS)  menu.c
  30.  
  31. paint.obj: paint.c paint.h wsc.h
  32.     cl $(C_FLAGS)  paint.c
  33.  
  34. simple.obj: simple.c simple.h wsc.h
  35.    cl $(C_FLAGS)  simple.c
  36.  
  37. wscerror.obj: wscerror.c wscerror.h wsc.h
  38.    cl $(C_FLAGS)  wscerror.c
  39.